/** loading.css */

.loading-position {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
}
.loading-position .loading {
    background: transparent url('../../images/loading.gif') no-repeat 50% 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
}

/* Spinner */
.spinner {
    display: none;
    margin: 0 auto;
    background-image: url("../../images/shared/loading.gif");
    background-repeat: no-repeat;
    background-size: 100% auto;
    box-sizing: content-box;
    width: 30px;
    height: 30px;
}
.spinner.active {
    display: block;
}
#leftmenu-position > .spinner {
    margin-top: 100px;
}